body{
    background-color: black;
}

.background-collage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.collage-image {
    position: absolute;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.2s ease-in-out;
}

audio {
    display: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(0, 0, 0); 
    padding: 1px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-bottom: 3px solid rgba(255, 255, 255, 0.5); 
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 15px;
    transition: background 0.3s, border-radius 0.3s;
}

.navbar ul li a:hover {
    background: rgba(15, 15, 15, 0.2);
    border-radius: 5px;
}

.content {
    position: relative;
    z-index: 1; 
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
}


h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
}
